home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / debug_setup.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  752 b   |  21 lines

  1. ##########################################################################
  2. # This script is desiogned to fix-up the SCRIPT dir and INCLUDE dir when
  3. # WinCron is being run on a developers machine. This is because the .EXE
  4. # file is not located in a standard location and the SCRIPT and INCLUDE
  5. # paths are relative to this location.
  6. # See Also: AutoRun.tg, config.tg
  7. {
  8.     -name DEBUG_SETUP.TG
  9.     -start 
  10.     -stop
  11.         
  12.     # Setup the default location to find USER scripts
  13.     -action -set TG.SCRIPT_DIR="%TG.ROOT_DIR%..\Scripts\"
  14.  
  15.     # Setup the default location to find USER include files for the 'C' interpreter
  16.     -action -set TG.INCLUDE_DIR="%TG.SCRIPT_DIR%Include\"
  17.  
  18.     # done!
  19.     -action -print debug_setup.tg: Environment modifications complete.
  20. }
  21.